/* Core Variables */
:root {
  --primary: #1a5d1a;
  --primary-dark: #0f2e0f;
  --accent: #ffc436;
  --accent-light: #ffd700;
  --text-dark: #111111;
  --text-light: #666666;
  --bg-light: #f8faf8;
  --bg-gradient: linear-gradient(135deg, var(--primary-dark), var(--primary));
  --card-gradient: linear-gradient(
    135deg,
    rgba(26, 93, 26, 0.05),
    rgba(255, 196, 54, 0.05)
  );
  --border-radius: 16px;
}

/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-light);
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--primary);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* Project Overview */
.project-overview {
  position: relative;
  margin-top: -80px;
  padding: 0 20px;
  z-index: 10;
}

/* Main Container with Full-width Background */
.overview-container {
  background: linear-gradient(to right, #ffffff 50%, var(--primary) 50%);
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
}

/* Enhanced Grid Layout */
.overview-grid {
  display: grid;
  /* grid-template-columns: 1.2fr 0.8fr; */
  min-height: 800px;
}

/* Content Side Styling */
.overview-content {
  padding: 80px 60px;
  position: relative;
  background: white;
}

/* Decorative Elements */
.overview-content::before {
  content: "";
  position: absolute;
  right: -50px;
  top: 0;
  height: 100%;
  width: 100px;
  /* background: white; */
  transform: skewX(-5deg);
  z-index: 1;
}

/* Overview Blocks with Enhanced Layout */
.overview-blocks {
  display: grid;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Enhanced Block Styling */
.overview-block {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 24px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.overview-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.overview-block:hover::before {
  opacity: 0.05;
}

.overview-block:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Block Header Enhancement */
.overview-block h3 {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-family: "Unbounded", sans-serif;
  position: relative;
}

.overview-block h3 i {
  padding: 20px;
  background: rgba(26, 93, 26, 0.1);
  border-radius: 16px;
  font-size: 1.5rem;
  transition: all 0.4s ease;
}

/* Enhanced List Styling */
.highlight-list {
  display: grid;
  gap: 15px;
  margin: 30px 0;
}

.highlight-list li {
  background: white;
  padding: 20px 25px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(26, 93, 26, 0.1);
  position: relative;
  overflow: hidden;
}

.highlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.highlight-list li:hover::before {
  transform: scaleY(1);
}

/* Change Grid Enhancement */
.change-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.change-item {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(26, 93, 26, 0.1);
}

.change-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.change-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Image Side Enhancement */
.overview-image {
  position: relative;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  overflow: hidden;
}

.overview-image::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.overview-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
}

.overview-image:hover img {
  transform: scale(1.05) rotate(-2deg);
}

/* Responsive Adjustments */
@media (max-width: 1400px) {
  .overview-grid {
    min-height: 600px;
  }
}

@media (max-width: 1200px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .overview-content::before {
    display: none;
  }

  .overview-container {
    background: white;
  }
}

@media (max-width: 768px) {
  .project-overview {
    margin-top: -40px;
  }

  .overview-content {
    padding: 40px 30px;
  }

  .change-grid {
    grid-template-columns: 1fr;
  }
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.stat-card {
  background: white;
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-icon i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.stat-number {
  font-family: "Unbounded", sans-serif;
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 10px;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent), var(--primary));
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
  border-radius: 3px;
}

.timeline-item {
  margin-bottom: 60px;
  position: relative;
  width: calc(50% - 30px);
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: calc(50% + 30px);
}

.timeline-content {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    max-width: 95%;
  }
}

@media (max-width: 992px) {
  .overview-content {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .project-overview {
    padding: 30px;
  }

  .timeline::after {
    left: 30px;
  }

  .timeline-item {
    width: calc(100% - 60px);
    left: 60px !important;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.8rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

/* Project Hero Section */
.project-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 140px 0 100px;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Decorative Background Elements */
.project-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  animation: backgroundMove 30s linear infinite;
}

@keyframes backgroundMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 60px;
  }
}

/* Floating Shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  animation: float 20s infinite ease-in-out;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: 10%;
  animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, -10px) rotate(5deg);
  }
  50% {
    transform: translate(-5px, 15px) rotate(-5deg);
  }
  75% {
    transform: translate(-10px, -5px) rotate(3deg);
  }
}

/* Hero Content */
.project-header {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.project-meta-top {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  justify-content: center;
}

.project-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.project-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.project-badge i {
  color: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.project-status {
  background: rgba(26, 93, 26, 0.3);
  border: 1px solid rgba(26, 93, 26, 0.5);
}

.project-header h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.project-tagline {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

/* Enhanced Meta Grid */
.project-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.meta-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 24px;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.meta-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.meta-item i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.meta-content label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 4px;
}

.meta-content span {
  font-size: 1.1rem;
  font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .project-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .project-hero {
    padding: 100px 0 60px;
  }

  .project-meta-top {
    flex-direction: column;
    align-items: center;
  }

  .meta-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .project-meta-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-header h1 {
    font-size: 2rem;
  }

  .project-tagline {
    font-size: 1rem;
  }
}

/* Content Sections */
.content-section {
  background: white;
  border-radius: var(--border-radius);
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(135deg, #fff5f5 0%, #fff9f0 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Decorative Pattern */
.testimonials::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: radial-gradient(
    circle at 50% 50%,
    rgba(255, 182, 193, 0.1) 0%,
    transparent 50%
  );
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
}

/* Testimonial Card */
.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 35px;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(255, 182, 193, 0.15);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 182, 193, 0.2);
}

/* Quote Icon */
.testimonial-card::before {
  content: "❝";
  position: absolute;
  top: -20px;
  left: 35px;
  font-size: 80px;
  color: var(--primary);
  opacity: 0.1;
  font-family: serif;
}

/* Author Section */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 2px dashed rgba(255, 182, 193, 0.3);
}

.testimonial-image {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.testimonial-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid var(--primary);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover .testimonial-image::after {
  opacity: 1;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Author Info */
.author-info h4 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-family: "Unbounded", sans-serif;
}

.author-info p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Quote Content */
blockquote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 25px;
  position: relative;
  font-style: italic;
}

/* Love Rating */
.love-rating {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.love-rating i {
  color: #ff6b6b;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .love-rating i {
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 40px auto 0;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .testimonial-card {
    padding: 30px;
  }

  .testimonial-image {
    width: 60px;
    height: 60px;
  }

  blockquote {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 25px;
  }

  .testimonial-card::before {
    font-size: 60px;
    top: -15px;
    left: 25px;
  }

  .author-info h4 {
    font-size: 1.1rem;
  }
}

/* Get Involved Section */
.get-involved {
  background: white;
  padding: 80px 0;
}

.involvement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.involvement-card {
  background: var(--bg-light);
  padding: 40px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: transform 0.3s ease;
}

.involvement-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: var(--card-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.card-icon i {
  font-size: 2rem;
  color: var(--primary);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Additional Responsive Styles */
@media (max-width: 992px) {
  .project-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .project-hero {
    padding: 100px 0 40px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .involvement-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .change-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .project-meta-grid {
    grid-template-columns: 1fr;
  }

  .change-grid {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding: 20px;
  }
}

/* Mobile-First Responsive Adjustments */
@media (max-width: 768px) {
  .project-overview {
    margin-top: -40px;
    padding: 0 15px;
  }

  .overview-container {
    background: white;
  }

  .overview-content {
    padding: 30px 20px;
  }

  /* Block Adjustments */
  .overview-block {
    padding: 25px;
    margin-bottom: 20px;
  }

  .overview-block h3 {
    font-size: 1.4rem;
    gap: 12px;
    margin-bottom: 20px;
  }

  .overview-block h3 i {
    padding: 12px;
    font-size: 1.2rem;
  }

  /* List Adjustments */
  .highlight-list {
    gap: 12px;
    margin: 20px 0;
  }

  .highlight-list li {
    padding: 15px;
    gap: 12px;
    font-size: 0.95rem;
  }

  /* Change Grid Adjustments */
  .change-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 25px;
  }

  .change-item {
    padding: 20px;
  }

  .change-item i {
    font-size: 1.8rem;
  }

  /* Meta Grid Adjustments */
  .project-meta-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .meta-item {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .project-overview {
    margin-top: -30px;
  }

  .overview-content {
    padding: 20px 15px;
  }

  .overview-block {
    padding: 20px;
  }

  .overview-block h3 {
    font-size: 1.3rem;
  }

  .highlight-list li {
    padding: 12px;
    font-size: 0.9rem;
  }

  /* Reduce Animations for Better Performance */
  .overview-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  }

  .change-item:hover {
    transform: translateY(-3px);
  }

  /* Adjust Text Sizes */
  .project-header h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .project-tagline {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  /* Badge Adjustments */
  .project-badge,
  .project-status {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  /* Stats Adjustments */
  .stat-card {
    padding: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }

  /* Timeline Adjustments */
  .timeline-item {
    width: 100%;
    padding: 15px;
  }
}

/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .overview-container {
    max-width: 95%;
  }

  .overview-content {
    padding: 40px 30px;
  }

  .change-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Additional Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Timeline Section */
.project-timeline {
  padding: 80px 0;
  background: var(--bg-light);
  overflow: hidden;
}

.timeline-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 80px;
}

.timeline-container {
  overflow: hidden;
}

.timeline-track {
  display: flex;
  gap: 30px;
  padding: 40px 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  position: relative;
}

/* Timeline Line */
.timeline-track::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(26, 93, 26, 0.1);
  z-index: 1;
}

/* Timeline Item */
.timeline-item {
  flex: 0 0 auto;
  width: 500px; /* Larger cards */
  padding: 35px 15px 0;
  position: relative;
  transition: all 0.3s ease;
}

/* Timeline Content */
.timeline-content {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  height: 480px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border: 1px solid rgba(26, 93, 26, 0.08);
}

/* Timeline Image */
.timeline-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.timeline-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Timeline Text */
.timeline-text {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.timeline-text h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

.timeline-text p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* Timeline Date */
.timeline-date {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  white-space: nowrap;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(26, 93, 26, 0.2);
}

/* Timeline Dot */
.timeline-dot {
  width: 20px;
  height: 20px;
  background: white;
  border: 4px solid var(--primary);
  border-radius: 50%;
  position: absolute;
  top: 53px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: all 0.3s ease;
}

/* Navigation Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.nav-btn.prev {
  left: 15px;
}
.nav-btn.next {
  right: 15px;
}

/* Hover Effects */
.timeline-item:hover .timeline-content {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.timeline-item:hover .timeline-dot {
  background: var(--primary);
  transform: translateX(-50%) scale(1.2);
  box-shadow: 0 0 0 8px rgba(26, 93, 26, 0.15);
}

.timeline-item:hover .timeline-image img {
  transform: scale(1.1);
}

.nav-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(26, 93, 26, 0.2);
}

.nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Hide scrollbar */
.timeline-track::-webkit-scrollbar {
  display: none;
}

.timeline-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .timeline-item {
    width: 450px;
  }
}

@media (max-width: 992px) {
  .timeline-wrapper {
    padding: 0 60px;
  }

  .timeline-item {
    width: 400px;
  }
}

@media (max-width: 768px) {
  .timeline-wrapper {
    padding: 0 40px;
  }

  .timeline-item {
    width: 320px;
  }

  .timeline-image {
    height: 220px;
  }

  .timeline-content {
    height: 420px;
  }

  .timeline-text {
    padding: 20px;
  }

  .timeline-text h3 {
    font-size: 1.2rem;
  }

  .timeline-text p {
    font-size: 1rem;
  }

  .timeline-date {
    padding: 8px 20px;
    font-size: 1rem;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Project Hero Image Section */
.project-hero-image {
  width: 100%;
  height: 80vh;
  position: relative;
  overflow: hidden;
  margin-top: -100px;
  z-index: 1;
}

/* Image Container */
.project-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: zoomOut 1.5s ease forwards;
}

/* Gradient Overlay */
.project-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 93, 26, 0.3),
    rgba(26, 93, 26, 0.7)
  );
  z-index: 2;
}

/* Image Preview Dots */
.image-preview-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 3;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}

.dot.active {
  width: 30px;
  border-radius: 20px;
  background: var(--accent);
  border-color: var(--accent);
}

/* Zoom Animation */
@keyframes zoomOut {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .project-hero-image {
    height: 70vh;
    margin-top: -80px;
  }
}

@media (max-width: 768px) {
  .project-hero-image {
    height: 60vh;
    margin-top: -60px;
  }

  .image-preview-dots {
    bottom: 30px;
    gap: 12px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .dot.active {
    width: 24px;
  }
}

@media (max-width: 480px) {
  .project-hero-image {
    height: 50vh;
    margin-top: -40px;
  }

  .image-preview-dots {
    bottom: 20px;
    gap: 10px;
  }

  .dot {
    width: 6px;
    height: 6px;
  }

  .dot.active {
    width: 20px;
  }
}

/* Project Objectives Section */
.objectives {
  background: var(--bg-light);
  padding: 100px 0;
}

.objectives-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Objectives Grid */
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

/* Objective Card */
.objective-item {
  background: white;
  border-radius: 16px;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(26, 93, 26, 0.1);
}

.objective-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Card Header */
.objective-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.objective-icon {
  width: 45px;
  height: 45px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.objective-item:hover .objective-icon {
  background: var(--primary);
  color: white;
}

/* Card Content */
.objective-title {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-family: "Unbounded", sans-serif;
  line-height: 1.3;
}

.objective-description {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Progress Bar */
.progress-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(26, 93, 26, 0.1);
}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.progress-bar {
  height: 6px;
  background: rgba(26, 93, 26, 0.1);
  border-radius: 100px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 100px;
  transition: width 1s ease;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .objectives-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .objectives {
    padding: 60px 0;
  }

  .objectives-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 30px auto 0;
  }

  .objective-item {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .objective-item {
    padding: 20px;
  }

  .objective-title {
    font-size: 1.2rem;
  }

  .objective-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Project Gallery Section */
.project-gallery {
  background: white;
  padding: 100px 0;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

/* Gallery Item */
.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Image Overlay */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(26, 93, 26, 0.8));
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Caption */
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-caption h4 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-family: "Unbounded", sans-serif;
}

.gallery-caption p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

/* Hover Effects */
.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Loading Animation */
.gallery-item {
  animation: fadeIn 0.5s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.large {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .project-gallery {
    padding: 60px 0;
  }

  .gallery-grid {
    gap: 20px;
    margin-top: 30px;
  }

  .gallery-caption {
    padding: 20px;
  }

  .gallery-caption h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-caption {
    padding: 15px;
  }

  .gallery-caption h4 {
    font-size: 1rem;
  }

  .gallery-caption p {
    font-size: 0.9rem;
  }
}

/* Project Videos Section */
.project-videos {
  background: var(--bg-light);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* Video Item */
.video-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.video-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Video Wrapper */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
}

.video-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-item:hover .video-link img {
  transform: scale(1.1);
}

/* Play Overlay */
.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.play-overlay i {
  color: white;
  font-size: 3rem;
  transition: transform 0.3s ease;
}

.video-item:hover .play-overlay {
  background: rgba(26, 93, 26, 0.5);
}

.video-item:hover .play-overlay i {
  transform: scale(1.2);
}

/* Video Caption */
.video-caption {
  padding: 25px;
  background: white;
}

.video-caption h4 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-family: "Unbounded", sans-serif;
}

.video-caption p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .project-videos {
    padding: 60px 0;
  }

  .video-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 30px auto 0;
  }

  .video-caption {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .video-grid {
    gap: 20px;
  }

  .play-overlay i {
    font-size: 2.5rem;
  }

  .video-caption {
    padding: 15px;
  }
}

/* Help Us Section */
.help-us {
  padding: 120px 0;
  background: linear-gradient(
      -45deg,
      rgba(30, 40, 10, 0.98),
      rgba(26, 35, 8, 0.95)
    ),
    url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?q=80")
      center/cover fixed;
  position: relative;
  overflow: hidden;
}

.help-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/images/pattern.svg") repeat;
  opacity: 0.05;
  animation: floatBackground 20s linear infinite;
}

.help-us__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  position: relative;
}

.help-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.help-card__content {
  padding: 40px;
}

.help-card__icon {
  width: 60px;
  height: 60px;
  background: #a3ff12;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  animation: pulse 2s infinite;
}

.help-card__icon i {
  font-size: 24px;
  color: #1e280a;
}

.help-card h2 {
  font-family: "Unbounded", sans-serif;
  font-size: var(--fs-lg);
  margin-bottom: 20px;
  color: #ffffff;
}

.help-card p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.6;
}

.help-card__stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.help-stat {
  text-align: center;
}

.help-stat__number {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-size: 2rem;
  color: #a3ff12;
  margin-bottom: 5px;
}

.help-stat__label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.help-card__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(45deg, var(--primary-light), var(--accent-green));
  color: #d2e9a3;
  text-decoration: none;
  border-radius: 30px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(163, 255, 18, 0.2);
}

.help-card__button:hover {
  transform: translateX(5px);
}

.help-card__button i {
  transition: transform 0.3s ease;
}

.help-card__button:hover i {
  transform: translateX(5px);
}

.help-card__image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.help-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.help-card:hover .help-card__image img {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .help-us__grid {
    grid-template-columns: 1fr;
  }

  .help-card h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .help-us {
    padding: 80px 0;
  }

  .help-card__content {
    padding: 30px;
  }

  .help-card__image {
    height: 200px;
  }
}

@keyframes floatBackground {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 100%;
  }
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 20px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Fix overflow issues */
body {
  overflow-x: hidden;
  width: 100%;
}

section {
  width: 100%;
  overflow: hidden;
}

/* Add these responsive adjustments */
@media (max-width: 768px) {
  /* Adjust grid layouts */
  .help-us__grid,
  .partner-us__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }

  /* Adjust timeline layout */
  .ourjourney__timeline__item {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
  }

  .ourjourney__timeline__item__date {
    width: 100%;
    text-align: left;
  }

  /* Adjust padding */
  .help-card__content,
  .partner-us__form-container,
  .testimonial__card {
    padding: 20px;
  }

  /* Adjust section padding */
  .ourjourney__container,
  .help-us,
  .partner-us,
  .ourjourney__testimonials,
  .ourjourney__faq {
    padding: 60px 0;
  }

  /* Fix image heights */
  .help-card__image,
  .partner-us__image {
    height: 200px;
  }
}

/* Fix grid gaps */
.help-us__grid,
.partner-us__grid,
.testimonials__grid {
  gap: clamp(20px, 3vw, 40px);
}

/* Fix image containers */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Add these to prevent overflow */
* {
  max-width: 100vw;
  box-sizing: border-box;
}

section {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.video-wrapper {
  max-width: 100%;
}

/* Fix form elements */
input,
textarea,
button {
  max-width: 100%;
}

/* Fix grid items */
.help-card,
.testimonial__card,
.partner-us__form-container {
  width: 100%;
  max-width: 100%;
}

/* Partner Us Section */
.partner-us {
  padding: 120px 0;
  background: linear-gradient(
      135deg,
      rgba(30, 40, 10, 0.98),
      rgba(26, 35, 8, 0.95)
    ),
    url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80")
      center/cover fixed;
  position: relative;
  overflow: hidden;
}

.partner-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/images/pattern.svg") repeat;
  opacity: 0.03;
  animation: floatBackground 30s linear infinite;
  pointer-events: none;
}

.partner-us__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.partner-us__content {
  padding-right: 20px;
}

.partner-us__content h2 {
  font-family: "Unbounded", sans-serif;
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.partner-us__content p {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1.6;
}

.partner-us__image {
  width: 100%;
  max-width: 100%;
  margin: 40px 0;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.partner-us__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.partner-us__image:hover img {
  transform: scale(1.05);
}

.partner-us__stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.partner-stat {
  text-align: center;
}

.partner-stat__number {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.partner-stat__label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Form Styles */
.partner-us__form-container {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  padding: 30px;
  width: 100%;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.partner-us__form-container h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #fff;
  text-align: center;
}

.partner-us form {
  display: grid;
  gap: 20px;
}

.partner-us form input,
.partner-us form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--glass-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.partner-us form textarea {
  height: 120px;
  resize: vertical;
}

.partner-us form input:focus,
.partner-us form textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  background: rgba(255, 255, 255, 0.1);
}

.partner-us form input::placeholder,
.partner-us form textarea::placeholder {
  color: var(--text-muted);
}

.partner-us form button {
  background: linear-gradient(45deg, var(--primary-light), var(--accent-green));
  color: var(--primary-dark);
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(163, 255, 18, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.partner-us form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(163, 255, 18, 0.3);
}

.partner-us form button i {
  transition: transform 0.3s ease;
}

.partner-us form button:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .partner-us__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .partner-us__content {
    padding-right: 0;
    text-align: center;
  }

  .partner-us__stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .partner-us {
    padding: 80px 0;
  }

  .partner-us__content h2 {
    font-size: 2.5rem;
  }

  .partner-us__form-container {
    padding: 30px;
  }
}

/* Add this JavaScript to handle scrolling */

/* Milestones Section */
.milestones {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

.milestones-container {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 40px;
    position: relative;
}

/* Vertical Line */
.milestones-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(26, 93, 26, 0.2) 5%,
        rgba(26, 93, 26, 0.2) 95%,
        transparent
    );
    transform: translateX(-50%);
}

/* Milestone Item */
.milestone-item {
    margin-bottom: 100px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.milestone-item:last-child {
    margin-bottom: 0;
}

.milestone-item:nth-child(even) {
    justify-content: flex-end;
}

/* Milestone Content */
.milestone-content {
    width: calc(50% - 50px);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(26, 93, 26, 0.08);
}

/* Milestone Image */
.milestone-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.milestone-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.milestone-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Milestone Text */
.milestone-text {
    padding: 30px;
}

.milestone-text h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: "Unbounded", sans-serif;
    font-weight: 600;
}

.milestone-text p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Milestone Achievements */
.milestone-achievements {
    list-style: none;
    padding: 0;
    margin: 0;
}

.milestone-achievements li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.milestone-achievements li i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Milestone Date */
.milestone-date {
    position: absolute;
    top: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(26, 93, 26, 0.2);
    white-space: nowrap;
}

.milestone-item:nth-child(odd) .milestone-date {
    right: calc(50% + 70px);
}

.milestone-item:nth-child(even) .milestone-date {
    left: calc(50% + 70px);
}

/* Milestone Dot */
.milestone-dot {
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 4px rgba(26, 93, 26, 0.1);
}

/* Hover Effects */
.milestone-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.milestone-content:hover .milestone-image img {
    transform: scale(1.1);
}

.milestone-item:hover .milestone-dot {
    background: var(--primary);
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 0 0 6px rgba(26, 93, 26, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .milestone-content {
        width: calc(50% - 40px);
    }
}

@media (max-width: 992px) {
    .milestones-container {
        padding: 0 30px;
    }

    .milestones-container::before {
        left: 40px;
    }

    .milestone-item {
        justify-content: flex-start !important;
        padding-left: 100px;
        margin-bottom: 80px;
    }

    .milestone-content {
        width: 100%;
        max-width: 600px;
    }

    .milestone-dot {
        left: 40px;
    }

    .milestone-date {
        left: 100px !important;
        right: auto !important;
        top: -45px;
    }

    .milestone-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .milestones {
        padding: 80px 0;
    }

    .milestones-container {
        padding: 0 20px;
    }

    .milestones-container::before {
        left: 30px;
    }

    .milestone-item {
        padding-left: 80px;
        margin-bottom: 70px;
    }

    .milestone-dot {
        left: 30px;
    }

    .milestone-date {
        left: 80px !important;
        font-size: 0.95rem;
        padding: 8px 20px;
    }

    .milestone-image {
        height: 250px;
    }

    .milestone-text {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .milestone-image {
        height: 200px;
    }

    .milestone-item {
        padding-left: 60px;
    }

    .milestones-container::before {
        left: 20px;
    }

    .milestone-dot {
        left: 20px;
    }

    .milestone-date {
        left: 60px !important;
        top: -40px;
        font-size: 0.9rem;
        padding: 6px 18px;
    }

    .milestone-text {
        padding: 20px;
    }

    .milestone-text h3 {
        font-size: 1.2rem;
    }

    .milestone-achievements li {
        font-size: 0.9rem;
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.donate-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.donate-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
}

.mobile-menu-links .donate-btn {
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-links, 
    .nav .donate-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* Add margin to main content to account for fixed header */
main {
    margin-top: 80px;
}

/* Tabs Section */
.tabs {
    padding: 120px 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    position: relative;
    overflow: hidden;
}

/* Decorative Elements */
.tabs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(46, 125, 50, 0.2), transparent);
}

/* Section Heading */
.tabs__heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
    padding: 0 20px;
    position: relative;
}

.tabs__heading h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-family: var(--heading-font);
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.tabs__heading h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.tabs__heading p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-top: 30px;
}

/* Tabs Header */
.tabs__header {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 60px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.tab__button {
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    background: white;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.tab__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 0;
}

.tab__button.active {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.2);
}

.tab__button.active::before {
    transform: translateX(0);
}

.tab__button span {
    position: relative;
    z-index: 1;
}

/* Cards Grid */
.tab__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Card Styling */
.tab__card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.5s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

.tab__card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.1);
}

.tab__card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.tab__card:hover img {
    transform: scale(1.1);
}

.tab__card-content {
    padding: 30px;
    position: relative;
}

.tab__card h4 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: var(--heading-font);
    line-height: 1.3;
}

.tab__card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.tab__card-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.card-stats {
    display: flex;
    gap: 25px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.stat-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .tabs {
        padding: 100px 0;
    }

    .tabs__heading h2 {
        font-size: 2.4rem;
    }

    .tab__button {
        padding: 14px 35px;
    }
}

@media (max-width: 768px) {
    .tabs {
        padding: 80px 0;
    }

    .tabs__heading {
        margin-bottom: 50px;
    }

    .tabs__heading h2 {
        font-size: 2rem;
    }

    .tabs__heading p {
        font-size: 1.1rem;
    }

    .tab__cards {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .tabs__heading h2 {
        font-size: 1.8rem;
    }

    .tabs__header {
        flex-direction: column;
        padding: 0 30px;
    }

    .tab__button {
        width: 100%;
    }

    .tab__card {
        margin: 0 15px;
    }

    .tab__card-content {
        padding: 25px;
    }

    .card-stats {
        flex-direction: column;
        gap: 15px;
    }
}
